home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / cheetah.zip / UGETZC.C < prev    next >
C/C++ Source or Header  |  1992-08-21  |  544b  |  25 lines

  1. /* ugetzc.c
  2.  *
  3.  * Description:
  4.  *      Get screen image in ZCompact format.
  5.  *
  6.  * Function list:
  7.  *      UgetZCompact().
  8.  *
  9.  * Portability: BORLANDC
  10.  *                                       (c) erdy 1992
  11.  * $Header: $
  12.  */
  13. #pragma inline
  14. #include <alloc.h>       /* farmalloc() */
  15. #include "far.h"
  16. #include "vgaprefx.h"
  17. #include "vgadrv.h"
  18. #include "screen.h"
  19.  
  20. static unsigned char near colormap[ZC_CMAPSIZE];
  21.  
  22. Image far *UgetZCompact(unsigned int x, unsigned int  y, int nc, int nr, int backcolor)
  23. {
  24.         return(0);
  25. }